Don't copy lisp/Makefile, it doesn't exist; copy
authorEli Zaretskii <eliz@gnu.org>
Tue, 30 Jan 2001 13:43:35 +0000 (13:43 +0000)
committerEli Zaretskii <eliz@gnu.org>
Tue, 30 Jan 2001 13:43:35 +0000 (13:43 +0000)
lisp/Makefile.in instead.  Use "rm -f" where more than one file
needs to be deleted, since command.com in Windows 9X doesn't grok
more than one argument.

nt/configure.bat

index 8abb58c7ebcbf8258be8d50d112f13232b0da76a..11697a4a6454f6bc2623c82a3bad4e445c1b883d 100755 (executable)
@@ -187,7 +187,7 @@ gcc -c junk.c
 if not exist junk.o goto checkw32api\r
 gcc -mno-cygwin -c junk.c\r
 if exist junk.o set nocygwin=Y\r
-del junk.o junk.c\r
+rm -f junk.c junk.o\r
 \r
 :checkw32api\r
 rem ----------------------------------------------------------------------\r
@@ -216,13 +216,13 @@ goto end
 \r
 :gccOk\r
 set COMPILER=gcc\r
-del junk.c junk.o\r
+rm -f junk.c junk.o\r
 echo Using 'gcc'\r
 goto genmakefiles\r
 \r
 :clOk\r
 set COMPILER=cl\r
-del junk.c junk.obj\r
+rm -f junk.c junk.obj\r
 echo Using 'MSVC'\r
 goto genmakefiles\r
 \r
@@ -252,7 +252,7 @@ copy paths.h ..\src\epaths.h
 copy /b config.settings+%MAKECMD%.defs+..\nt\makefile.w32-in ..\nt\makefile\r
 copy /b config.settings+%MAKECMD%.defs+..\lib-src\makefile.w32-in ..\lib-src\makefile\r
 copy /b config.settings+%MAKECMD%.defs+..\src\makefile.w32-in ..\src\makefile\r
-if not exist ..\lisp\Makefile.unix rename ..\lisp\Makefile Makefile.unix\r
+if not exist ..\lisp\Makefile.unix rename ..\lisp\Makefile.in Makefile.unix\r
 if exist ..\lisp\makefile del /f ..\lisp\makefile\r
 copy /b config.settings+%MAKECMD%.defs+..\lisp\makefile.w32-in ..\lisp\makefile\r
 rem   Use the default (no-op) Makefile.in if the nt version is not present.\r